EventLabel.fromJson constructor

EventLabel.fromJson(
  1. Map json_
)

Implementation

EventLabel.fromJson(core.Map json_)
  : this(
      backgroundColor: json_['backgroundColor'] as core.String?,
      id: json_['id'] as core.String?,
      name: json_['name'] as core.String?,
    );