LoadingAppearence.config constructor

LoadingAppearence.config(
  1. Map json
)

Implementation

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