EventTagOverride.fromJson constructor

EventTagOverride.fromJson(
  1. Map json_
)

Implementation

EventTagOverride.fromJson(core.Map json_)
    : this(
        enabled: json_.containsKey('enabled')
            ? json_['enabled'] as core.bool
            : null,
        id: json_.containsKey('id') ? json_['id'] as core.String : null,
      );