ChartCustomNumberFormatOptions.fromJson constructor

ChartCustomNumberFormatOptions.fromJson(
  1. Map json_
)

Implementation

ChartCustomNumberFormatOptions.fromJson(core.Map json_)
    : this(
        prefix: json_.containsKey('prefix')
            ? json_['prefix'] as core.String
            : null,
        suffix: json_.containsKey('suffix')
            ? json_['suffix'] as core.String
            : null,
      );