FeatureView_SyncConfig.fromJson constructor

FeatureView_SyncConfig.fromJson(
  1. Object? j
)

Implementation

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