TodoListResponseModel constructor

TodoListResponseModel({
  1. num? success,
  2. String? message,
  3. String? totalRecords,
  4. Summary? summary,
  5. List<TodoList>? todoList,
})

Implementation

TodoListResponseModel({
    num? success,
    String? message,
    String? totalRecords,
  Summary? summary,
  List<TodoList>? todoList,}){
  _success = success;
  _message = message;
  _summary = summary;
  _totalRecords = totalRecords;
  _todoList = todoList;
}