KeySchemaElement.fromJson constructor

KeySchemaElement.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory KeySchemaElement.fromJson(Map<String, dynamic> json) {
  return KeySchemaElement(
    name: json['Name'] as String,
    type: json['Type'] as String,
  );
}