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