InterfaceMethodDef.fromJson constructor

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

Implementation

factory InterfaceMethodDef.fromJson(Map<String, dynamic> json) =>
    InterfaceMethodDef(
      name: json['name'] as String,
      kind: json['kind'] as String?,
    );