VolumeUserInfoRentalPeriod.fromJson constructor

VolumeUserInfoRentalPeriod.fromJson(
  1. Map json_
)

Implementation

VolumeUserInfoRentalPeriod.fromJson(core.Map json_)
    : this(
        endUtcSec: json_.containsKey('endUtcSec')
            ? json_['endUtcSec'] as core.String
            : null,
        startUtcSec: json_.containsKey('startUtcSec')
            ? json_['startUtcSec'] as core.String
            : null,
      );