BuildInfo.fromJson constructor

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

Implementation

BuildInfo.fromJson(Map<String, dynamic> json) {
  flutter = JSON(json)['flutter'].stringValue;
  unity = BuildUnityConfig.fromJson(JSON(json)['unity']
      .mapValue
      .map((key, value) => MapEntry(key.toString(), value)));
}