toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return {
    'name': name,
    'type': type,
    'isList': isList,
    'isMap': isMap,
    'isCustom': isCustom,
    'jsonKey': jsonKey,
    'hasJsonKey': hasJsonKey,
  };
}