LogbotCredentials.fromJson constructor

LogbotCredentials.fromJson(
  1. dynamic json
)

Implementation

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