PersonProperties.fromJson constructor

PersonProperties.fromJson(
  1. Map json_
)

Implementation

PersonProperties.fromJson(core.Map json_)
  : this(
      displayFormat: json_['displayFormat'] as core.String?,
      email: json_['email'] as core.String?,
    );