ElectionOfficial.fromJson constructor

ElectionOfficial.fromJson(
  1. Map json_
)

Implementation

ElectionOfficial.fromJson(core.Map json_)
    : this(
        emailAddress: json_['emailAddress'] as core.String?,
        faxNumber: json_['faxNumber'] as core.String?,
        name: json_['name'] as core.String?,
        officePhoneNumber: json_['officePhoneNumber'] as core.String?,
        title: json_['title'] as core.String?,
      );