getBackendInfo method

Map<String, dynamic> getBackendInfo()

Get backend info as a map.

Implementation

Map<String, dynamic> getBackendInfo() {
  return {
    'type': _backendType,
    'initialized': _isInitialized,
    'model': _currentModel,
    'hasHandle': _handle != null,
  };
}