FeatureValue_Metadata.fromJson constructor

FeatureValue_Metadata.fromJson(
  1. Object? j
)

Implementation

factory FeatureValue_Metadata.fromJson(Object? j) {
  final json = j as Map<String, Object?>;
  return FeatureValue_Metadata(
    generateTime: switch (json['generateTime']) {
      null => null,
      Object $1 => protobuf.Timestamp.fromJson($1),
    },
  );
}