fromJson static method

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

Implementation

static Configuration fromJson(Map<String, dynamic> json) {
  return Configuration(
    clientId: json['clientId'],
    clientSecret: json['clientSecret'],
    basePath: json['basePath'],
    tokenUrl: json['tokenUrl'],
    accessToken: json['accessToken'],
  );
}