fromJson static method

TestVectorString? fromJson(
  1. Map<String, dynamic>? json
)

Implementation

static TestVectorString? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return TestVectorString(
    value: List<String>.from(
      tdListFromJson(
        json['value'],
      ).map((item) => (item as dynamic)?.toString() ?? ''),
    ),
  );
}