OrdersAcknowledgeResponse.fromJson constructor
OrdersAcknowledgeResponse.fromJson(
- Map json_
Implementation
OrdersAcknowledgeResponse.fromJson(core.Map json_)
: this(
executionStatus: json_.containsKey('executionStatus')
? json_['executionStatus'] as core.String
: null,
kind: json_.containsKey('kind') ? json_['kind'] as core.String : null,
);