deviceOs property

  1. @TagNumber.new(12)
String get deviceOs

@mandatory

@description The primary operating system classification of the physical mobile device.

@example "Android"

@regex ^0-9A-Za-z+$

@format Alphanumeric characters only. Spaces and special characters are strictly prohibited.

Implementation

@$pb.TagNumber(12)
$core.String get deviceOs => $_getSZ(2);
  1. @TagNumber.new(12)
set deviceOs (String value)

Implementation

@$pb.TagNumber(12)
set deviceOs($core.String value) => $_setString(2, value);