LoadingAppearence.config constructor
LoadingAppearence.config(
- Map json
Implementation
factory LoadingAppearence.config(Map json) {
return LoadingAppearence(
type: json['type'],
size: json['size'],
backgroundColor: json['backgroundColor'],
loadingColor: json['loadingColor'],
);
}