github.com/tada-team/tdproto@v1.51.57/codegen/dart/lib_template/lib/src/interfaces/i_response.dart (about)

     1  abstract class IResponse<T> {
     2    String get time;
     3  
     4    bool get ok;
     5  
     6    T get result;
     7  
     8    String get error;
     9  
    10    Map<String, dynamic> get details;
    11  }