EventReservationInfo.fromJson constructor

EventReservationInfo.fromJson(
  1. Map json_
)

Implementation

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