FlowDistinguisherMethod.fromJson constructor

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

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,
  );
}