LabelColor.fromJson constructor

LabelColor.fromJson(
  1. Map json_
)

Implementation

LabelColor.fromJson(core.Map json_)
  : this(
      backgroundColor: json_['backgroundColor'] as core.String?,
      textColor: json_['textColor'] as core.String?,
    );