InterfacePropertyDef.fromJson constructor

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

Implementation

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