fromJson_fieldName static method

String? fromJson_fieldName(
  1. Map<String, dynamic> json
)

Implementation

static String? fromJson_fieldName(Map<String, dynamic> json) {
  return (json[r'fieldName'] == null) ? null : json[r'fieldName'] as String?;
}