FlowDistinguisherMethod.fromJson constructor
Creates a FlowDistinguisherMethod from JSON data.
Implementation
factory FlowDistinguisherMethod.fromJson(Map<String, dynamic> json) {
final tempTypeJson = json['type'];
final String tempType = tempTypeJson;
return FlowDistinguisherMethod(
type: tempType,
);
}