BeautyConfig.fromJson constructor

BeautyConfig.fromJson(
  1. Map<String, dynamic>? json
)

Implementation

BeautyConfig.fromJson(Map<String, dynamic>? json) : super.fromJson(json) {
  if (json != null) {
    licenseUrl = json['licenseUrl'] as String;
    md5 = json['md5'] as String;
  }
}