fromJson static method
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'],
);
}