toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final errorCode = this.errorCode;
  final errorMessage = this.errorMessage;
  final lastRefreshTime = this.lastRefreshTime;
  final state = this.state;
  return {
    'errorCode': ?errorCode,
    'errorMessage': ?errorMessage,
    'lastRefreshTime': ?lastRefreshTime,
    'state': ?state,
  };
}