SDKInitiateSessionResponse.fromJson constructor

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

Implementation

SDKInitiateSessionResponse.fromJson(Map<String, dynamic> json) {
  data = json['Data'] != null
      ? new MFInitiateSessionResponse.fromJson(json['Data'])
      : null;
}