CourseNotify.fromRawJson constructor

CourseNotify.fromRawJson(
  1. String str
)

Implementation

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