fromMap static method
Implementation
static CustomStyleOptions? fromMap(dynamic json) {
if (json == null) {
return null;
}
return CustomStyleOptions(
json['enabled'] ?? false,
styleData: json['styleData'],
styleExtraData: json['styleExtraData'],
);
}