fromJson static method
Implementation
static OptionValueInteger? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return OptionValueInteger(
value: int.tryParse((json['value'] as dynamic)?.toString() ?? '') ?? 0,
);
}