You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
app/lib/base/http_result_model.dart

20 lines
410 B

/*
* ====================================================
* package :
* author : Created by nansi.
* time : 2019-08-14 10:25
* remark :
* ====================================================
*/
// import 'package:flutter/material.dart';
class HttpResultModel<T> {
String code;
T data;
String msg;
bool result;
HttpResultModel(this.code, this.data, this.msg,this.result);
}