LunRange.fromJson constructor

LunRange.fromJson(
  1. Map json_
)

Implementation

LunRange.fromJson(core.Map json_)
    : this(
        quantity: json_.containsKey('quantity')
            ? json_['quantity'] as core.int
            : null,
        sizeGb:
            json_.containsKey('sizeGb') ? json_['sizeGb'] as core.int : null,
      );