Profile.fromJson constructor

Profile.fromJson(
  1. Map json_
)

Implementation

Profile.fromJson(core.Map json_)
    : this(
        description: json_.containsKey('description')
            ? json_['description'] as core.String
            : null,
      );