DriverInfo.fromJson constructor

DriverInfo.fromJson(
  1. String str
)

Implementation

factory DriverInfo.fromJson(String str) {
  return DriverInfo.fromMap(json.decode(str));
}