MembershipsDuration.fromJson constructor

MembershipsDuration.fromJson(
  1. Map json_
)

Implementation

MembershipsDuration.fromJson(core.Map json_)
  : this(
      memberSince: json_['memberSince'] as core.String?,
      memberTotalDurationMonths:
          json_['memberTotalDurationMonths'] as core.int?,
    );