Profile.fromJson constructor

Profile.fromJson(
  1. Map json_
)

Implementation

Profile.fromJson(core.Map json_)
  : this(
      emailAddress: json_['emailAddress'] as core.String?,
      historyId: json_['historyId'] as core.String?,
      messagesTotal: json_['messagesTotal'] as core.int?,
      threadsTotal: json_['threadsTotal'] as core.int?,
    );