FeatureView_SyncConfig.fromJson constructor
FeatureView_SyncConfig.fromJson(
- 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),
},
);
}