TimeCode.fromRawJson constructor

TimeCode.fromRawJson(
  1. String str
)

Implementation

factory TimeCode.fromRawJson(String str) => TimeCode.fromJson(
      json.decode(str) as Map<String, dynamic>,
    );