WeightedFontFamily.fromJson constructor

WeightedFontFamily.fromJson(
  1. Map json_
)

Implementation

WeightedFontFamily.fromJson(core.Map json_)
    : this(
        fontFamily: json_['fontFamily'] as core.String?,
        weight: json_['weight'] as core.int?,
      );