LogbotCredentials.fromJson constructor
LogbotCredentials.fromJson(
- dynamic json
Implementation
LogbotCredentials.fromJson(dynamic json) {
clientId = json['client_id'];
clientSecret = json['client_secret'];
username = json['username'];
password = json['password'];
basePath = json['basePath'];
}