decode static method

FlutterBluetoothEntry decode(
  1. Object result
)

Implementation

static FlutterBluetoothEntry decode(Object result) {
  result as List<Object?>;
  return FlutterBluetoothEntry(
    mac: result[0] as String?,
    signalStrength: result[1]! as int,
    timestamp: result[2]! as int,
    name: result[3]! as String,
    uuid: result[4] as String?,
    major: result[5] as int?,
    minor: result[6] as int?,
    type: result[7] as String?,
    txPower: result[8] as int?,
  );
}