EventReservationInfo.fromJson constructor

EventReservationInfo.fromJson(
  1. Map json_
)

Implementation

EventReservationInfo.fromJson(core.Map json_)
    : this(
        confirmationCode: json_.containsKey('confirmationCode')
            ? json_['confirmationCode'] as core.String
            : null,
        kind: json_.containsKey('kind') ? json_['kind'] as core.String : null,
      );