theme method

Theme theme(
  1. ThemeData data
)

Modifier for setting widgets Theme Data.

Implementation

Theme theme(ThemeData data) {
  return Theme(
    data: data,
    child: this,
  );
}