AppContactInformation.fromJson constructor

AppContactInformation.fromJson(
  1. Map json_
)

Implementation

AppContactInformation.fromJson(core.Map json_)
  : this(
      contactEmail: json_['contactEmail'] as core.String?,
      phoneNumber: json_['phoneNumber'] as core.String?,
      websiteUrl: json_['websiteUrl'] as core.String?,
    );