SapInstanceProperties.fromJson constructor

SapInstanceProperties.fromJson(
  1. Map json_
)

Implementation

SapInstanceProperties.fromJson(core.Map json_)
    : this(
        numbers: (json_['numbers'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
      );